-
Notifications
You must be signed in to change notification settings - Fork 9.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
provider/aws: Changing the db_instance resource to mark the engine_version as Optional #3744
Conversation
@@ -54,7 +54,7 @@ func resourceAwsDbInstance() *schema.Resource { | |||
|
|||
"engine_version": &schema.Schema{ | |||
Type: schema.TypeString, | |||
Required: true, | |||
Optional: true, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Needs to be Computed
too
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done and building :)
Minor feedback, let me know what you think |
I think this branch got messed up, there are a bunch of unrelated things in here now |
@catsby crap - that's a messed up rebase :( I had to rebase from master |
f4bfbb2
to
e3a66d0
Compare
… is now part of the checkInstanceAttributes func
ok @catsby I have fixed the PR branch now - it's ready for checking :) |
LGTM thanks @stack72 |
provider/aws: Changing the db_instance resource to mark the engine_version as Optional
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further. |
Fixes #3465
The docs actually specify that this is not a required field. Added a test to prove this and I still get an instance up and running